summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/present/fxaa.h
blob: b898198f1ee07ef0c145ff7784ca312c5ff2d387 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "video_core/renderer_opengl/gl_resource_manager.h"

namespace OpenGL {

class ProgramManager;

class FXAA {
public:
    explicit FXAA(u32 width, u32 height);
    ~FXAA();

    GLuint Draw(ProgramManager& program_manager, GLuint input_texture);

private:
    OGLProgram vert_shader;
    OGLProgram frag_shader;
    OGLSampler sampler;
    OGLFramebuffer framebuffer;
    OGLTexture texture;
};

} // namespace OpenGL